CREATE TABLE reservation (
    id INT UNSIGNED NOT NULL AUTO_INCREMENT,
    title VARCHAR(255),
    description TEXT,
    location TEXT,
    contact TEXT,
    url VARCHAR(255),
    start DATETIME,
    end DATETIME,
    PRIMARY KEY (`id`)
) 

http://codes-sources.commentcamarche.net/source/view/53067/1250521#browser

http://www.phpsources.org/scripts269-PHP.htm

http://stevethomas.com.au/jquery/jquery-datepicker-ajax-request-to-highlight-days-from-mysql.html

http://stackoverflow.com/questions/25972097/unavailable-date-booking-with-beforeshowday-datepicker

http://stackoverflow.com/questions/25159915/datepicker-fullcalendar-and-mysql-event-dates-end-up-being-a-day-short

$(function() {
  $("#datepickerthing").datepicker({ 
    altField: '#actualDate', 
    minDate:'0', 
    maxDate: '+6M',
    beforeShowDay:  nationalDays
  });

  var natDays = ["4/22/2009","4/23/2009","4/24/2009","4/25/2009","4/26/2009","5/27/2009","5/28/2009","6/26/2009","6/27/2009","6/28/2009","6/29/2009","6/30/2009"];
  function nationalDays(date) {
    var sDate = (date.getMonth()+1).toString() + "/" + date.getDate().toString() + "/" + date.getFullYear().toString();
    if ($.inArray(sDate, natDays) != -1) return [false,"","Not this day!"];
    else return [true, ""];
  }
}); 

http://stackoverflow.com/questions/11477561/disable-days-in-datepicker-with-mysql

disable days in datepicker with mysql
 datepicker disable dates from mysql
 
 http://stackoverflow.com/questions/8526774/disable-specific-days-returned-by-php-mysql-in-jquery-ui-datepicker
 
 http://codingforums.com/javascript-frameworks/206879-jquery-ui-datepicker-disabling-specific-dates.html
 
 http://davidwalsh.name/jquery-datepicker-disable-days
 
 http://tokenposts.blogspot.fr/2011/05/jquery-datepicker-disable-specific.html
 
 http://www.phpeveryday.com/articles/jQuery-UI-AJAX-JSON-Datepicker-P1029.html
 
 super    http://macmicro.chez.com/framework/datepicker_json.php
 
 
 http://developer-paradize.blogspot.fr/2013/06/jquery-fullcalendar-integration-with.html
 
 http://forums.mediabox.fr/wiki/tutoriaux/php/bdd/inserer-modifier-supprimer-des-donne-php
 
 http://www.petit-kiwi.com/php-creation-pagination-avancee
 